home *** CD-ROM | disk | FTP | other *** search
/ Assassins - Ultimate CD Games Collection 2 / Assassins 2 - Ultimate Games No. 2 (1995)(Weird Science)[!][Amiga-CD32-CDTV].iso / devs / mountlist < prev    next >
Text File  |  1992-09-02  |  3KB  |  151 lines

  1. /* MountList for V1.3 */
  2.  
  3. NULL:
  4.  Handler = L:Null-Handler
  5.  Stacksize = 500
  6.  Priority = 5
  7.  GlobVec = 1
  8. #
  9.  
  10. /*Mount Entry for the new Console Handler */
  11.  
  12. WIN: 
  13.     Handler = L:Newcon-Handler
  14.     Priority = 5
  15.     StackSize = 1000
  16. #
  17.  
  18. CON: 
  19.     Handler = L:Newcon-Handler
  20.     Priority = 5
  21.     StackSize = 1000
  22. #
  23.  
  24.  
  25.  
  26. /*  Mount Entry for the new Console Handler */
  27.  
  28. NEWCON: 
  29.     Handler = L:Newcon-Handler
  30.     Priority = 5
  31.     StackSize = 1000
  32. #
  33.  
  34. CON: 
  35.     Handler = L:Newcon-Handler
  36.     Priority = 5
  37.     StackSize = 1000
  38. #
  39.  
  40. /* This is an example of a non-filing system mount using a handler written
  41.    in C.
  42. */
  43.  
  44. SPEAK:     
  45.     Handler = L:Speak-Handler
  46.     Stacksize = 6000
  47.     Priority = 5
  48.     GlobVec = -1
  49. #
  50.  
  51. /*  This is an example of an alternative type of non-filing device mount,
  52.     used to mount the non-buffered serial handler
  53. */
  54.  
  55. AUX:
  56.     Handler = L:Aux-Handler
  57.     Stacksize = 1000
  58.     Priority = 5
  59. #
  60. /*  This is a non-filing system device */
  61.  
  62. PIPE:      
  63.     Handler = L:Pipe-Handler
  64.     Stacksize = 6000
  65.     Priority = 5
  66.     GlobVec = -1
  67. #
  68.  
  69. /* An example mount entry using the fast file system 
  70.    Df1: when accessed as fast: reads ffs disks
  71. */
  72.  
  73. FAST:
  74.     Device             = trackdisk.device
  75.     FileSystem         = l:FastFileSystem
  76.     Globvec            = -1
  77.     DosType            = 0x444F5301
  78.     Unit               = 1
  79.     Flags              = 0
  80.     Surfaces           = 2
  81.     BlocksPerTrack     = 11
  82.     Reserved        = 2
  83.     Interleave         = 1
  84.     LowCyl             = 0  
  85.     HighCyl            = 79
  86.     Buffers            = 5
  87.     BufMemType         = 1
  88.     Stacksize        = 5000
  89. #
  90.  
  91. /*  Mount Entry for the new Console Handler   */
  92.  
  93. IBMB:   FileSystem = L:MessyFileSystem /* or messydos:l/MessyFileSystem */
  94.    Device = messydisk.device      /* or messydos:devs/messydisk.device */
  95.    Unit = 1
  96.    Flags = 0
  97.    LowCyl = 0 ; HighCyl = 79
  98.    Reserved = 0
  99.    Surfaces = 2
  100.    BlocksPerTrack = 9
  101.    Buffers = 5
  102.    BufMemType = 1   /* messydisk needs no chip mem */
  103.    BootPri = 0
  104.    Stacksize = 4096
  105.    Priority = 5
  106.    GlobVec  = -1
  107.         Mount = 1
  108. #
  109. /*  Amiga 500 501 Memory / Clock / ST506 drive interface    */
  110. /*  mountlist generated by (and for use only with)         */
  111. /*  NECutils - Lansdown Software ST506 Utility program     */
  112.  
  113.  
  114.  
  115. work:    Device      = hdisc.device
  116.     Unit        = 0
  117.     Flags       = 0
  118.     Surfaces    = 4
  119.     BlocksPerTrack = 17
  120.     Reserved    = 2
  121.     LowCyl      = 2
  122.     HighCyl     = 302
  123.     Buffers     = 20
  124.     BufMemType  = 1
  125.     FileSystem  = L:FastFileSystem
  126.     MaxTransfer = 130048
  127.     GlobVec     = -1
  128.     StackSize   = 4000
  129.     DosType     = 0x444f5301
  130. #
  131.  
  132.  
  133.  
  134. games:    Device      = hdisc.device
  135.     Unit        = 0
  136.     Flags       = 0
  137.     Surfaces    = 4
  138.     BlocksPerTrack = 17
  139.     Reserved    = 2
  140.     LowCyl      = 303
  141.     HighCyl     = 614
  142.     Buffers     = 10
  143.     BufMemType  = 1
  144.     FileSystem  = L:FastFileSystem
  145.     MaxTransfer = 130048
  146.     GlobVec     = -1
  147.     StackSize   = 4000
  148.     DosType     = 0x444f5301
  149. #
  150.  
  151.